home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_c / rukc1g.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-02-27  |  744b  |  26 lines

  1. @echo off
  2. REM use /B for mono video systems, as in INSTALL /b
  3. cls
  4. echo RUCKUS 1.0d Install
  5. echo.
  6. echo To install RUCKUS, the library files must first be extracted and built.
  7. echo Two install runs are made: one each for RUCKUS-DAC and RUCKUS-MIDI.
  8. echo.
  9. pause
  10. instruck RUCKDAC %1
  11. if errorlevel==1 goto nogo
  12. instruck RUCKMIDI %1
  13. if errorlevel==1 goto nogo
  14. echo.
  15. echo Installation was a success. Refer to the documentation under Appendix C.
  16. echo for further installation procedures. Borland C/C++ users _must_ use the
  17. echo additional library files/install in the BORLAND.ZIP archive. See the
  18. echo README file in BORLAND.ZIP for more information.
  19. echo.
  20. goto endit
  21. :nogo
  22. echo.
  23. echo Installation failed to complete. 
  24. :endit
  25.  
  26.